A Proxy Auto-Configuration (PAC) file is a JavaScript file that determines how web browsers automatically choose a proxy server (or no proxy) for accessing a given URL. It is a fundamental component in network management, especially in large organizations, enabling centralized control over internet access and security.
The primary function of a PAC file is to define the FindProxyForURL(url, host)
function. This function takes two arguments:
url
: The URL of the web page or resource being requested.host
: The hostname derived from the URL.The function returns a string indicating the proxy server(s) to use, or DIRECT
to bypass the proxy and connect directly. Possible return values include:
DIRECT
: Connect directly without a proxy.PROXY host:port
: Use the specified proxy server and port.SOCKS host:port
: Use the specified SOCKS proxy server and port.multiple entries separated by semicolons (e.g.,
PROXY proxy1:8080; PROXY proxy2:8080; DIRECT`) which specifies a fallback order for proxy servers.PAC files are commonly used in:
function FindProxyForURL(url, host) {
if (shExpMatch(url, "http://internal.example.com/*")) {
return "DIRECT"; // Connect directly for internal URLs
} else if (dnsDomainIs(host, ".example.com")) {
return "PROXY proxy.example.com:8080"; // Use proxy for example.com domain
} else {
return "DIRECT"; // Connect directly for all other URLs
}
}
This example shows a simple PAC file that connects directly for internal URLs, uses a proxy for URLs in the example.com
domain, and connects directly for all other URLs. The functions shExpMatch()
and dnsDomainIs()
are built-in JavaScript functions available within the PAC file context. More information about built-in JavaScript functions of PAC files is available at https://www.wikiwhat.page/kavramlar/pac%20file%20javascript%20functions.
Ne Demek sitesindeki bilgiler kullanıcılar vasıtasıyla veya otomatik oluşturulmuştur. Buradaki bilgilerin doğru olduğu garanti edilmez. Düzeltilmesi gereken bilgi olduğunu düşünüyorsanız bizimle iletişime geçiniz. Her türlü görüş, destek ve önerileriniz için iletisim@nedemek.page